fix(rst): ensure blank line before bullet lists#58760
Merged
potiuk merged 1 commit intoapache:mainfrom Nov 28, 2025
Merged
Conversation
Using script to ensure all .rst files in the project have a blank line before "* " bullet lists. This prevents formatting issues similar to apache#58748.
|
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contributors' Guide (https://github.com/apache/airflow/blob/main/contributing-docs/README.rst)
|
uranusjr
approved these changes
Nov 27, 2025
choo121600
approved these changes
Nov 27, 2025
potiuk
approved these changes
Nov 28, 2025
|
Awesome work, congrats on your first merged pull request! You are invited to check our Issue Tracker for additional contributions. |
Backport failed to create: v3-1-test. View the failure log Run details
You can attempt to backport this manually by running: cherry_picker fe80fed v3-1-testThis should apply the commit to the v3-1-test branch and leave the commit in conflict state marking After you have resolved the conflicts, you can continue the backport process by running: cherry_picker --continue |
RoyLee1224
pushed a commit
to RoyLee1224/airflow
that referenced
this pull request
Dec 3, 2025
Using script to ensure all .rst files in the project have a blank line before "* " bullet lists. This prevents formatting issues similar to apache#58748.
Copilot AI
pushed a commit
to jason810496/airflow
that referenced
this pull request
Dec 5, 2025
Using script to ensure all .rst files in the project have a blank line before "* " bullet lists. This prevents formatting issues similar to apache#58748.
itayweb
pushed a commit
to itayweb/airflow
that referenced
this pull request
Dec 6, 2025
Using script to ensure all .rst files in the project have a blank line before "* " bullet lists. This prevents formatting issues similar to apache#58748.
24 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Notice that #58748 fixed a bullet points rendering issue caused by missing blank lines before
*, but some files still have the same problem. This PR adds a fix for them.For example:

How
I used a simple script below to check that bullet points render properly and fixed them manually.
Script to find bullet points format error
Optional / Future